home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / ip / ka9q / src890906.arc / GLOBAL.H < prev    next >
C/C++ Source or Header  |  1989-09-07  |  5KB  |  160 lines

  1. #ifndef    MAXINT16
  2.  
  3. /* Global definitions used by every source file.
  4.  * Some may be compiler dependent.
  5.  */
  6.  
  7. #if    defined(__TURBOC__) || defined(__STDC__)
  8. #define    ANSIPROTO    1
  9. #endif
  10.  
  11. #ifndef    __ARGS
  12. #ifdef    ANSIPROTO
  13. #define    __ARGS(x)    x
  14. #else
  15. #define    __ARGS(x)    ()
  16. #endif
  17. #endif
  18.  
  19.  
  20. #if    !defined(AMIGA) && (defined(LATTICE) || defined(MAC) || defined(__TURBOC__))
  21. /* These compilers require special open modes when reading binary files.
  22.  * 
  23.  * "The single most brilliant design decision in all of UNIX was the
  24.  * choice of a SINGLE character as the end-of-line indicator" -- M. O'Dell
  25.  *
  26.  * "Whoever picked the end-of-line conventions for MS-DOS and the Macintosh
  27.  * should be shot!" -- P. Karn's corollary to O'Dells' declaration
  28.  */
  29. #define    READ_BINARY    "rb"
  30. #define    WRITE_BINARY    "wb"
  31. #define    READ_TEXT    "rt"
  32. #define    WRITE_TEXT    "wt"
  33. #define    APPEND_TEXT    "at+"
  34.  
  35. #else
  36.  
  37. #define    READ_BINARY    "r"
  38. #define    WRITE_BINARY    "w"
  39. #define    READ_TEXT    "r"
  40. #define    WRITE_TEXT    "w"
  41. #define    APPEND_TEXT    "a+"
  42.  
  43. #endif
  44.  
  45. /* These two lines assume that your compiler's longs are 32 bits and
  46.  * shorts are 16 bits. It is already assumed that chars are 8 bits,
  47.  * but it doesn't matter if they're signed or unsigned.
  48.  */
  49. typedef long int32;        /* 32-bit signed integer */
  50. typedef unsigned short int16;    /* 16-bit unsigned integer */
  51. #define    uchar(x) ((unsigned char)(x))
  52. #define    MAXINT16 65535        /* Largest 16-bit integer */
  53.  
  54. /* The "interrupt" keyword is non-standard, so make it configurable */
  55. #ifdef    __TURBOC__
  56. #define    INTERRUPT    void interrupt
  57. #else
  58. #define    INTERRUPT    void
  59. #endif
  60.  
  61. /* Note that these definitions are on by default if none of the Turbo-C style
  62.  * memory model definitions are on; this avoids having to change them when
  63.  * porting to 68K environments.
  64.  */
  65. #if    !defined(__TINY__) && !defined(__SMALL__) && !defined(__MEDIUM__)
  66. #define    LARGEDATA    1
  67. #endif
  68.  
  69. #if    !defined(__TINY__) && !defined(__SMALL__) && !defined(__COMPACT__)
  70. #define    LARGECODE    1
  71. #endif
  72.  
  73. /* Since not all compilers support structure assignment, the ASSIGN()
  74.  * macro is used. This controls how it's actually implemented.
  75.  */
  76. #ifdef    NOSTRUCTASSIGN    /* Version for old compilers that don't support it */
  77. #define    ASSIGN(a,b)    memcpy((char *)&(a),(char *)&(b),sizeof(b));
  78. #else            /* Version for compilers that do */
  79. #define    ASSIGN(a,b)    ((a) = (b))
  80. #endif
  81.  
  82. /* Define null object pointer in case stdio.h isn't included */
  83. #ifndef    NULL
  84. /* General purpose NULL pointer */
  85. #define    NULL (void *)0
  86. #endif
  87. #define    NULLCHAR (char *)0    /* Null character pointer */
  88. #define    NULLCHARP (char **)0    /* Null character pointer pointer */
  89. #define    NULLINT    (int *)0    /* Null integer pointer */
  90. #define    NULLFP     (int (*)())0    /* Null pointer to function returning int */
  91. #define    NULLVFP     (void (*)())0    /* Null pointer to function returning void */
  92. #define    NULLVIFP (INTERRUPT (*)())0
  93. #define    NULLFILE (FILE *)0    /* Null file pointer */
  94.  
  95. /* Extract a short from a long */
  96. #define    hiword(x)    ((int16)((x) >> 16))
  97. #define    loword(x)    ((int16)(x))
  98.  
  99. /* Extract a byte from a short */
  100. #define    hibyte(x)    ((unsigned char)((x) >> 8))
  101. #define    lobyte(x)    ((unsigned char)(x))
  102.  
  103. /* Extract nibbles from a byte */
  104. #define    hinibble(x)    (((x) >> 4) & 0xf)
  105. #define    lonibble(x)    ((x) & 0xf)
  106.  
  107. /* Various low-level and miscellaneous functions */
  108. int dirps __ARGS((void));
  109. void freeargs __ARGS((int argc,char *argv[]));
  110. int getopt __ARGS((int argc,char *argv[],char *opts));
  111. int htoi __ARGS((char *));
  112. long htol __ARGS((char *));
  113. void initroot __ARGS((char *root));
  114. void log __ARGS((int s,char *fmt, ...));
  115. void *ltop __ARGS((long));
  116. long ptol __ARGS((void *));
  117. void restore __ARGS((int));
  118. void rip __ARGS((char *));
  119. char *smsg __ARGS((char *msgs[],unsigned nmsgs,unsigned n));
  120. #if    !defined __TURBOC__
  121. char *strdup __ARGS((const char *));
  122. #endif
  123.  
  124. #include <stdlib.h>
  125. #include <string.h>
  126.  
  127. #ifdef    AZTEC
  128. #define    rewind(fp)    fseek(fp,0L,0);
  129. #endif
  130.  
  131. #ifdef    __TURBOC__
  132. #define movblock(so,ss,do,ds,c)    movedata(ss,so,ds,do,c)
  133. #define outportw outport
  134. #define inportw inport
  135.  
  136. #else
  137.  
  138. /* General purpose function macros already defined in turbo C */
  139. #ifndef    min
  140. #define    min(x,y)    ((x)<(y)?(x):(y))    /* Lesser of two args */
  141. #endif
  142. #ifndef max
  143. #define    max(x,y)    ((x)>(y)?(x):(y))    /* Greater of two args */
  144. #endif
  145. #ifdef    MSDOS
  146. #define MK_FP(seg,ofs)    ((void far *) \
  147.                (((unsigned long)(seg) << 16) | (unsigned)(ofs)))
  148. #endif
  149. #endif    /* __TURBOC __ */
  150.  
  151. #ifdef    AMIGA
  152. /* super kludge de WA3YMH */
  153. #define fclose(fp)    amiga_fclose(fp)
  154. extern char *sys_errlist[];
  155. extern int errno;
  156. #endif
  157.  
  158. #endif    /* MAXINT16 */
  159.  
  160.